home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / amok_lha / amok83.lha / TKEd / Help / TKEd_ARexx.e < prev   
Text File  |  1993-08-15  |  20KB  |  890 lines

  1. ***
  2. New
  3. Name          :  New
  4.  
  5. Function      :  Clears all the text 
  6. Parameters    :  No parameter
  7. Returnvalue   :  Nothing
  8.  
  9. ***
  10. Open
  11. Name          :  Open
  12.  
  13. Function      :  Loads a text
  14. Parameters    :  Name of the text (No parameter: opens a filerequester)
  15. Returnvalue   :  Name of the text, if successful, else 10
  16.  
  17. ***
  18. Save
  19. Name          :  Save
  20.  
  21. Function      :  Saves a text
  22. Parameters    :  No parameter
  23. Returnvalue   :  0 if succesful, else 10
  24.  
  25. ***
  26. SaveAs
  27. Name          :  SaveAs
  28.  
  29. Function      :  Saves a text with a new name (the loaded text keeps his 
  30.                  name)
  31. Parameters    :  1:New name of the text
  32. Returnvalue   :  New name, if succesful, else 10
  33.  
  34. ***
  35. Print
  36. Name          :  Print
  37.  
  38. Function      :  Sends the text to the printer
  39. Parameters    :  Rückgabewer
  40. Returnvalue   :  0 if successful, else 10
  41.  
  42. ***
  43. InsertFile
  44. Name          :  InsertFile
  45.  
  46. Function      :  Inserts a text
  47. Parameters    :  Name of the text
  48. Returnvalue   :  Name of the inserted text, if successful, else 10
  49.  
  50. ***
  51. SaveAllAndQuit
  52. Name          :  SaveAllAndQuit
  53.  
  54. Function      :  Saves all modified buffers and quits TKEd
  55. Parameters    :  No parameter
  56. Returnvalue   :  Nothing
  57.  
  58. ***
  59. SaveAndQuit
  60. Name          :  SaveAndQuit
  61.  
  62. Function      :  Saves a text and quits TKEd
  63. Parameters    :  No parameter
  64. Returnvalue   :  0 if succesful, else 10
  65.  
  66. ***
  67. Quit
  68. Name          :  Quit
  69.  
  70. Function      :  Quit TKEd
  71. Parameters    :  No parameter (FORCE suppresses the Modified requester)
  72. Returnvalue   :  Nothing
  73.  
  74. ***
  75. Indent
  76. Name          :  Indent
  77.  
  78. Function      :  Switches indent on/off
  79. Parameters    :  ON, to switch on, anything else will switch off
  80. Returnvalue   :  Nothing
  81.           
  82. ***
  83. AutoBackup
  84. Name          :  AutoBackup
  85.  
  86. Function      :  Switches autobackup on/off
  87. Parameters    :  ON, to switch on, anything else will switch off
  88. Returnvalue   :  Nothing
  89.           
  90. ***
  91. VersionBackup
  92. Name          :  VersionBackup
  93.  
  94. Function      :  Switches versionbackup on/off
  95. Parameters    :  ON, to switch on, anything else will switch off
  96. Returnvalue   :  Nothing
  97.  
  98. ***
  99. SetExtension
  100. Name          :  SetExtension
  101.  
  102. Function      :  Changes the extension of Backups
  103. Parameters    :  String with the extension (up to 10 characters)
  104. Returnvalue   :  Nothing
  105.  
  106. ***
  107. Find
  108. Name          :  Find
  109.  
  110. Function      :  Searches a word in the text (forward)
  111. Parameters    :  word to search for (No parameter: opens a textrequester)
  112. Returnvalue   :  0 if found, else 10
  113.  
  114. ***
  115. FindBack
  116. Name          :  FindBack
  117.  
  118. Function      :  Searches a word in the text (backward)
  119. Parameters    :  word to search for (No parameter: opens a textrequester)
  120. Returnvalue   :  0 if found, else 10
  121.  
  122. ***
  123. FindNext
  124. Name          :  FindNext
  125.  
  126. Function      :  Searches next occurence of the word
  127. Parameters    :  No parameters
  128. Returnvalue   :  0 if found, else 10
  129.  
  130. ***
  131. FindPrevious
  132. Name          :  FindPrevious
  133.  
  134. Function      :  Searches previous occurence of the word
  135. Parameters    :  No parameters
  136. Returnvalue   :  0 if found, else 10
  137.  
  138. ***
  139. FindChange
  140. Name          :  FindChange
  141.  
  142. Function      :  Searches for the next occurence of a word and replaces it 
  143.                  with another
  144. Parameters    :  1:Word to search for  2:Replacing word (no parameter: 
  145.                  opens a textrequester)
  146. Returnvalue   :  0 if possible, else 10
  147.  
  148. ***
  149. ChangeNext
  150. Name          :  ChangeNext
  151.  
  152. Function      :  Searches for the next occurence of a word and replaces it 
  153.                  with another one
  154. Parameters    :  1:Word to search for  2:Replacing word
  155. Returnvalue   :  0 if possible, else 10
  156.  
  157. ***
  158. ChangePrevious
  159. Name          :  ChangePrevious
  160.  
  161. Function      :  Searches for the previous occurence of a word and replaces 
  162.                  it with another one
  163. Parameters    :  1:Word to search for  2:Replacing word
  164. Returnvalue   :  0 if possible, else 10
  165.      
  166. ***
  167. ChangeAll
  168. Name          :  ChangeAll
  169.  
  170. Function      :  Replaces all occurences of a word with another
  171. Parameters    :  1:Word to search for   2:Replacing word
  172. Returnvalue   :  Nothing
  173.  
  174. ***
  175. CountOccurences
  176. Name          :  CountOccurences
  177.  
  178. Function      :  Counts all occurences of a word in a text
  179. Parameters    :  1:word
  180. Returnvalue   :  Number of occurences
  181.      
  182. ***
  183. MatchingBracket
  184. Name          :  MatchingBracket
  185.  
  186. Function      :  See menu 'Matching Bracket'
  187. Parameters    :  No parameters
  188. Returnvalue   :  0 if matching bracket found, else 10
  189.    
  190. ***
  191. GotoBookMark
  192. Name          :  GotoBookMark
  193.  
  194. Function      :  Goes to the mark
  195. Parameters    :  Number of the mark (0..9)
  196. Returnvalue   :  0 if successful, else 10
  197.      
  198. ***
  199. SetBookMark
  200. Name          :  SetBookMark
  201.  
  202. Function      :  Sets a new mark
  203. Parameters    :  Number of the new mark (0..9)
  204. Returnvalue   :  0 if successful, else 10
  205.      
  206. ***
  207. ClearBookMark
  208. Name          :  ClearBookMark
  209.  
  210. Function      :  Clears a mark
  211. Parameters    :  Number of the mark (0..9)
  212. Returnvalue   :  0 if successful, else 10
  213.  
  214. ***
  215. Mark
  216. Name          :  Mark
  217.  
  218. Function      :  Marks start of a block
  219. Parameters    :  No parameters
  220. Returnvalue   :  Nothing
  221.  
  222. ***
  223. MarkVertical1
  224. Name          :  MarkVertical1
  225.  
  226. Function      :  Marks the left end of a vertical block
  227. Parameters    :  Cursorposition of the left end (0..length of the line)
  228. Returnvalue   :  0 if possible, else 10
  229.  
  230. ***
  231. MarkVertical2
  232. Name          :  MarkVertical2
  233.  
  234. Function      :  Marks the right end of a vertical block
  235. Parameters    :  Cursorposition of the right end (0..length of the line)
  236. Returnvalue   :  0 if possible, else 10
  237.  
  238. ***
  239. MarkAll
  240. Name          :  MarkAll
  241.  
  242. Function      :  Marks all lines (see same menu for details)
  243. Parameters    :  No parameters
  244. Returnvalue   :  Nothing
  245.  
  246. ***
  247. Cut
  248. Name          :  Cut
  249.  
  250. Function      :  'Cut' a marked block
  251. Parameters    :  No parameters
  252. Returnvalue   :  Nothing
  253.      
  254. ***
  255. Copy
  256. Name          :  Copy
  257.  
  258. Function      :  'Copies' a marked block
  259. Parameters    :  No parameters
  260. Returnvalue   :  Nothing
  261.      
  262. ***
  263. Delete
  264. Name          :  Delete
  265.  
  266. Function      :  Deletes all lines of a marked block
  267. Parameters    :  No parameters
  268. Returnvalue   :  Nothing
  269.      
  270. ***
  271. Paste
  272. Name          :  Paste
  273.  
  274. Function      :  See menu 'Paste Block'
  275. Parameters    :  No parameters
  276. Returnvalue   :  Nothing
  277.      
  278. ***
  279. PasteVertical
  280. Name          :  PasteVertical
  281.  
  282. Function      :  'Pastes' a vertical Block
  283. Parameters    :  No parameters
  284. Returnvalue   :  Nothing
  285.      
  286. ***
  287. BlockRight
  288. Name          :  BlockRight
  289.  
  290. Function      :  Moves a marked block one position to the right
  291. Parameters    :  No parameters
  292. Returnvalue   :  Nothing
  293.      
  294. ***
  295. BlockLeft
  296. Name          :  BlockLeft
  297.  
  298. Function      :  Moves a marked block one position to the left
  299. Parameters    :  No parameters
  300. Returnvalue   :  Nothing
  301.      
  302. ***
  303. UnmarkBlock
  304. Name          :  UnmarkBlock
  305.  
  306. Function      :  Unmarks a block
  307. Parameters    :  No parameters
  308. Returnvalue   :  Nothing
  309.      
  310. ***
  311. InsertBlock
  312. Name          :  InsertBlock
  313.  
  314. Function      :  Opens a filerequester, to load a saved block
  315. Parameters    :  No parameters
  316. Returnvalue   :  Nothing
  317.      
  318. ***
  319. PrintBlock
  320. Name          :  PrintBlock
  321.  
  322. Function      :  Sends a marked block to the printer
  323. Parameters    :  No parameters
  324. Returnvalue   :  0 if successful, else 10
  325.      
  326. ***
  327. SaveBlock
  328. Name          :  SaveBlock
  329.  
  330. Function      :  Opens a filerequester, to save a block
  331. Parameters    :  No parameters
  332. Returnvalue   :  Nothing
  333.  
  334. ***
  335. Foldmarked
  336. Name          :  Foldmarked
  337.  
  338. Function      :  Folds a marked block
  339. Parameters    :  No parameters
  340. Returnvalue   :  Nothing
  341.  
  342. ***
  343. Fold
  344. Name          :  Fold
  345.  
  346. Function      :  Folds all possible parts of a text (seem menu)
  347. Parameters    :  No parameters
  348. Returnvalue   :  Nothing
  349.  
  350. ***
  351. Unfold
  352. Name          :  Unfold
  353.  
  354. Function      :  Unfolds all folded text
  355. Parameters    :  No parameters
  356. Returnvalue   :  Nothing
  357.  
  358. ***
  359. FoldNext
  360. Name          :  FoldNext
  361.  
  362. Function      :  Folds next possible part of a text
  363. Parameters    :  No parameters
  364. Returnvalue   :  Nothing
  365.  
  366.  20. UnfoldNext
  367.      -Unfolds next folding of a text
  368.      -No parameters
  369.      -Nothing
  370.  
  371. ***
  372. SetFoldOn
  373. Name          :  SetFoldOn
  374.  
  375. Function      :  Sets the keyword for the beginning of a folding
  376. Parameters    :  The neu keyword
  377. Returnvalue   :  Nothing
  378.  
  379. ***
  380. SetFoldOff
  381. Name          :  SetFoldOff
  382.  
  383. Function      :  Sets the keyword for the end of a folding
  384. Parameters    :  Neu keyword
  385. Returnvalue   :  Nothing
  386.      
  387. ***
  388. PreviousPage
  389. Name          :  PreviousPage
  390.  
  391. Function      :  Goes to the previous page
  392. Parameters    :  No parameters
  393. Returnvalue   :  Nothing
  394.      
  395. ***
  396. NextPage
  397. Name          :  NextPage
  398.  
  399. Function      :  Goes to the next page 
  400. Parameters    :  No parameters
  401. Returnvalue   :  Nothing
  402.      
  403. ***
  404. BeginOfFile
  405. Name          :  BeginOfFile
  406.  
  407. Function      :  Goes to the very first character of a text
  408. Parameters    :  No parameters
  409. Returnvalue   :  Nothing
  410.      
  411. ***
  412. EndOfFile
  413. Name          :  EndOfFile
  414.  
  415. Function      :  Goes to the end of the text
  416. Parameters    :  No parameters
  417. Returnvalue   :  Nothing
  418.    
  419. ***
  420. BeginOfLine
  421. Name          :  BeginOfLine
  422.  
  423. Function      :  Goes to the very first character of a line
  424. Parameters    :  No parameters
  425. Returnvalue   :  Nothing
  426.      
  427. ***
  428. EndOfLine
  429. Name          :  EndOfLine
  430.  
  431. Function      :  Goes to the right end of a line
  432. Parameters    :  No parameters
  433. Returnvalue   :  Nothing
  434.      
  435. ***
  436. GotoLine
  437. Name          :  GotoLine
  438.  
  439. Function      :  Goes to a line
  440. Parameters    :  Number of the line
  441. Returnvalue   :  0 if successful, else 10
  442.      
  443. ***
  444. GotoColumn              
  445. Name          :  GotoColumn              
  446.  
  447. Function      :  Goes to a column       
  448. Parameters    :  Number of the column   
  449. Returnvalue   :  0 if successful, else 10
  450.       
  451. ***
  452. NextWord
  453. Name          :  NextWord
  454.  
  455. Function      :  Goes to the next word
  456. Parameters    :  No parameters
  457. Returnvalue   :  Nothing
  458.  
  459. ***
  460. PreviousWord
  461. Name          :  PreviousWord
  462.  
  463. Function      :  Goes to the previous word
  464. Parameters    :  No parameters
  465. Returnvalue   :  Nothing
  466.  
  467. ***
  468. Cursor
  469. Name          :  Cursor
  470.  
  471. Function      :  Moves the cursor up/down/left/right
  472. Parameters    :  UP, DOWN, LEFT or RIGHT (use capital letters)
  473. Returnvalue   :  Nothing
  474.             
  475. ***
  476. Line
  477. Name          :  Line
  478.  
  479. Function      :  Moves cursor the specified number of lines up/down
  480. Parameters    :  Number of lines (e.g. 23, -45, +6)
  481. Returnvalue   :  10, if the cursor reaches the beginning/end of the text, else 0
  482.      
  483. ***
  484. Column
  485. Name          :  Column
  486.  
  487. Function      :  Moves cursor the specified number of characters to the lft/right
  488. Parameters    :  Number of characters (e.g. 23, -45, +6)
  489. Returnvalue   :  10, if the cursor reaches the beginning/end of the line, else 0
  490.  
  491. ***
  492. GotoByte
  493. Name          :  GotoByte
  494.  
  495. Function      :  Jumps to the specified byte (= character). The very first 
  496.                  byte is no. 0. If the specified byte is beyond the end of 
  497.                  the text, the TKEd jumps to the very last byte in the text.
  498.                  (Remember: The not visible 'Return'-character at the end 
  499.                   of each line is also one byte)
  500. Parameters    :  Number of the byte ( >=0 )
  501. Returnvalue   :  0 if ok, else 10
  502.  
  503. ***
  504. DeleteWord
  505. Name          :  DeleteWord
  506.  
  507. Function      :  Deletes the word under the cursor
  508. Parameters    :  No parameters
  509. Returnvalue   :  Nothing
  510.      
  511. ***
  512. DeleteLine
  513. Name          :  DeleteLine
  514.  
  515. Function      :  Deletes the current line
  516. Parameters    :  No parameters
  517. Returnvalue   :  Nothing
  518.      
  519. ***
  520. DeleteToEOL
  521. Name          :  DeleteToEOL
  522.  
  523. Function      :  Deletes the current line from the position of the cursor 
  524.                  to the end of the line
  525. Parameters    :  No parameters
  526. Returnvalue   :  Nothing
  527.  
  528. ***
  529. FirstError
  530. Name          :  FirstError
  531.  
  532. Function      :  Displays the first error of an errorfile
  533. Parameters    :  If parameter = PROMPT : Shows a requester with the errormessage
  534. Returnvalue   :  Errormessage (if exist), else 10
  535.      
  536. ***
  537. NextError
  538. Name          :  NextError
  539.  
  540. Function      :  Displays the next error of an errorfile
  541. Parameters    :  If parameter = PROMPT : Shows a requester with the errormessage
  542. Returnvalue   :  Errormessage (if exist), else 10
  543.    
  544. ***
  545. FunctionKey
  546. Name          :  FunctionKey
  547.  
  548. Function      :  Executes one of the user-/ARexx-menus
  549. Parameters    :  Number 0 to 19 (F1=0 ... F10=9, Shift-F1=10 ... Shift-F10 = 19)
  550. Returnvalue   :  Nothing
  551.  
  552. ***
  553. MakeReturn
  554. Name          :  MakeReturn
  555.  
  556. Function      :  Same as pressing the 'return'-key
  557. Parameters    :  No parameters
  558. Returnvalue   :  Nothing
  559.  
  560. ***
  561. del
  562. Name          :  del
  563.  
  564. Function      :  Same as pressing the 'Del'-key
  565. Parameters    :  No parameters
  566. Returnvalue   :  Nothing
  567.  
  568. ***
  569. backspace
  570. Name          :  backspace
  571.  
  572. Function      :  Same as pressing the '<-' -key
  573. Parameters    :  No parameters
  574. Returnvalue   :  Nothing
  575.  
  576. ***
  577. GotoBuffer
  578. Name          :  GotoBuffer
  579.  
  580. Function      :  Shows the text in the specified buffer
  581. Parameters    :  Number of the buffer (0 to 9)
  582. Returnvalue   :  0 if any text is loaded, 5 if no text is loaded, 10 if 
  583.                  error
  584.  
  585. ***
  586. GetBufferNr
  587. Name          :  GetBufferNr
  588.  
  589. Function      :  Returns the number of the current buffer
  590. Parameters    :  No parameters
  591. Returnvalue   :  Number of the buffer
  592.  
  593. ***
  594. FindBuffer
  595. Name          :  FindBuffer
  596.  
  597. Function      :  Searches a buffer and goes to it (if found)
  598. Parameters    :  Name of the buffer (not case sensitive); if no name is 
  599.                  specified, TKEd switches to the next free buffer (if exist 
  600.                  any)
  601. Returnvalue   :  Number of the buffer (0..9) if found; 10 if not found
  602.      
  603. ***
  604. GetLineNr
  605. Name          :  GetLineNr
  606.  
  607. Function      :  Returns the number of the current line
  608. Parameters    :  No parameters
  609. Returnvalue   :  Number of the line
  610.      
  611. ***
  612. GetColumnNr
  613. Name          :  GetColumnNr
  614.  
  615. Function      :  Returns the number of the current column
  616. Parameters    :  No parameters
  617. Returnvalue   :  Number of the column
  618.      
  619. ***
  620. GetChar
  621. Name          :  GetChar
  622.  
  623. Function      :  Returns the character at the cursor-position
  624. Parameters    :  No parameters
  625. Returnvalue   :  1 character
  626.      
  627. ***
  628. GetLine
  629. Name          :  GetLine
  630.  
  631. Function      :  Returns the text of the current line
  632. Parameters    :  No parameters
  633. Returnvalue   :  Text of the line
  634.  
  635. ***
  636. GetLineLen
  637. Name          :  GetLineLen
  638.  
  639. Function      :  Returns the length of the current line
  640. Parameters    :  No parameters
  641. Returnvalue   :  ength of the line
  642.  
  643. ***
  644. LastLine
  645. Name          :  LastLine
  646.  
  647. Function      :  Returns the linenumber of the very last line of a text
  648. Parameters    :  No parameters
  649. Returnvalue   :  Number of the last line
  650.      
  651. ***
  652. GetFileName
  653. Name          :  GetFileName
  654.  
  655. Function      :  Returns the name of the loaded text (without path)
  656. Parameters    :  No parameters
  657. Returnvalue   :  Name of the text
  658.  
  659. ***
  660. GetPathName
  661. Name          :  GetPathName
  662.  
  663. Function      :  Returns the path to the loaded text (without name)
  664. Parameters    :  No parameters
  665. Returnvalue   :  Path of the text
  666.  
  667. ***
  668. GetFullPathName
  669. Name          :  GetFullPathName
  670.  
  671. Function      :  Returns path and name of the loaded text
  672. Parameters    :  No parameters
  673. Returnvalue   :  Full pathname of the text
  674.  
  675. ***
  676. FirstMarkedLine
  677. Name          :  FirstMarkedLine
  678.  
  679. Function      :  Returns the number of the first marked line
  680. Parameters    :  No parameters
  681. Returnvalue   :  Number of the first marked line or -1 if nothing is marked
  682.  
  683. ***
  684. Language
  685. Name          :  Language
  686.  
  687. Function      :  Returns the language used in TKEd
  688. Parameters    :  No parameters
  689. Returnvalue   :  'GERMAN' if german language is used and 'ENGLISH' if 
  690.                  english language is used 
  691.     
  692. ***
  693. WriteChar
  694. Name          :  WriteChar
  695.  
  696. Function      :  Writes down one character
  697. Parameters    :  1 character
  698. Returnvalue   :  0 if successful, else 10
  699.      
  700. ***
  701. WriteString
  702. Name          :  WriteString
  703.  
  704. Function      :  Writes down a string
  705. Parameters    :  String (up to 255 characters long)
  706. Returnvalue   :  0 if successful, else 10
  707.  
  708. ***
  709. Request1
  710. Name          :  Request1
  711.  
  712. Function      :  Opens a requester to show a text to the user
  713. Parameters    :  Text of the requester. If the keyword 'TKED' is in this 
  714.                  text, the requester will appear in the window of TKEd.
  715.                  If not, the requester will appear in the the activ window. 
  716. Returnvalue   :  Nothing
  717.       
  718. ***
  719. Request2
  720. Name          :  Request2
  721.  
  722. Function      :  Opens a requester with two gadgets to show a text to the 
  723.                  user
  724. Parameters    :  Text of the requester. If the keyword 'TKED' is in this 
  725.                  text, the requester will appear in the window of TKEd.
  726.                  If not, the requester will appear in the activ window. 
  727. Returnvalue   :  0 after clcking 'OK', 10 after clicking 'Cancel
  728.  
  729. ***
  730. GetNumber
  731. Name          :  GetNumber
  732.  
  733. Function      :  Opens a requester to enter a number
  734. Parameters    :  Text at the top of the requester
  735. Returnvalue   :  Number or 0 if the requester was canceled
  736.  
  737. ***
  738. GetString
  739. Name          :  GetString
  740.  
  741. Function      :  Opens a requester to enter a test. (up to 255 characters)
  742. Parameters    :  Text at the top of the requester|Default Text
  743.                  e.g. Enter a text|Tom Kroener
  744. Returnvalue   :  Text
  745.  
  746. ***
  747. Beep
  748. Name          :  Beep
  749.  
  750. Function      :  Makes a 'beep' to signal the user 
  751. Parameters    :  No parameters
  752. Returnvalue   :  Nothing
  753.  
  754. ***
  755. DisplayBeep
  756. Name          :  DisplayBeep
  757.  
  758. Function      :  Makes a 'Displaybeep' to signal the user
  759. Parameters    :  No parameters
  760. Returnvalue   :  Nothing
  761.  
  762. ***
  763. MakeTitle
  764. Name          :  MakeTitle
  765.  
  766. Function      :  Display a text (for a short time) in the titlebar of TKEd
  767. Parameters    :  Text to display
  768. Returnvalue   :  Nothing
  769.  
  770. ***
  771. JoinLines
  772. Name          :  JoinLines
  773.  
  774. Function      :  Joins the current line with the previous line
  775. Parameters    :  No parameters
  776. Returnvalue   :  Nothing 
  777.  
  778. ***
  779. CloneLine
  780. Name          :  CloneLine
  781.  
  782. Function      :  Makes a dublicate of the current line
  783. Parameters    :  No paramters
  784. Returnvalue   :  Nothing
  785.  
  786. ***
  787. SwapChars
  788. Name          :  SwapChars
  789.  
  790. Function      :  Swaps to characters
  791. Parameters    :  No parameters
  792. Returnvalue   :  Nothing
  793.      
  794. ***
  795. SwapCase
  796. Name          :  SwapCase
  797.  
  798. Function      :  See same menu
  799. Parameters    :  No parameters
  800. Returnvalue   :  Nothing
  801.      
  802. ***
  803. UpperCase
  804. Name          :  UpperCase
  805.  
  806. Function      :  Changes the character under the cursor from lowercase to uppercase
  807. Parameters    :  No parameters
  808. Returnvalue   :  Nothing
  809.  
  810. ***
  811. LowerCase
  812. Name          :  LowerCase
  813.  
  814. Function      :  Changes the character under the cursor from uppercase to lowercase
  815. Parameters    :  No parameters
  816. Returnvalue   :  Nothing
  817.  
  818. ***
  819. EnterAscii
  820. Name          :  EnterAscii
  821.  
  822. Function      :  Writes down the ASCII-character belonging to the number
  823. Parameters    :  ASCII-number of the character  (0 < number < 256)
  824. Returnvalue   :  0 if successful, else 10
  825.      
  826. ***
  827. TKEdtoFront
  828. Name          :  TKEdtoFront
  829.  
  830. Function      :  Pushes the screen of TKEd to the front
  831. Parameters    :  No parameters
  832. Returnvalue   :  Nothing
  833.      
  834. ***
  835. TKEdtoBack
  836. Name          :  TKEdtoBack
  837.  
  838. Function      :  Pushes the screen of TKEd to the back
  839. Parameters    :  No parameters
  840. Returnvalue   :  Nothing
  841.  
  842. ***
  843. WBtoFront
  844. Name          :  WBtoFront
  845.  
  846. Function      :  Pushes the workbenchscreen to the front
  847. Parameters    :  No parameters
  848. Returnvalue   :  0 if possible, else 10
  849.      
  850. ***
  851. ReName
  852. Name          :  ReName
  853.  
  854. Function      :  Renames the text
  855. Parameters    :  New name for the text
  856. Returnvalue   :  Nothing
  857.  
  858. ***
  859. Delay
  860. Name          :  Delay
  861.  
  862. Function      :  Waits for the specified time
  863. Parameters    :  Time to wait in 1/50 seconds (e.g.'Delay 50' will wait for one second)
  864. Returnvalue   :  Nothing
  865.  
  866. ***
  867. Sleep
  868. Name          :  Sleep
  869.  
  870. Function      :  Makes TKEd 'sleeping' (See menu 'Sleep'). The ARREX-
  871.                  program waits as long as TKEd is sleeping; this is an 
  872.                  easy way to make one AREXX-program to wait for another: 
  873.                  The second AREXX-program only needs to send any AREXX-
  874.                  command to TKEd to 'wake up' TKEd and the first program 
  875.                  will continue.
  876. Parameters    :  No parameters
  877. Returnvalue   :  Nothing
  878.  
  879. ***
  880. StripAnsi
  881. Name          :  StripAnsi
  882.  
  883. Function      :  Remove all ANSI-codes from the current cursor position to the
  884.                  end of the text
  885. Parameters    :  No parameters
  886. Returnvalue   :  Nothing
  887.      
  888.  
  889.  
  890.